home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / MacPerl5 / MPRsrc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-29  |  2.4 KB  |  135 lines  |  [TEXT/MPS ]

  1. /*********************************************************************
  2. Project    :    MacPerl        -    Real Perl Application
  3. File        :    MPRsrc.h        -    Resources
  4. Author    :    Matthias Neeracher
  5. Language    :    MPW C
  6.  
  7. $Log: MPRsrc.h,v $
  8. Revision 1.2  1994/05/04  02:53:49  neeri
  9. Inline Input.
  10.  
  11. Revision 1.1  1994/02/27  23:04:07  neeri
  12. Initial revision
  13.  
  14. Revision 0.3  1993/11/07  00:00:00  neeri
  15. Further work on preference dialog
  16.  
  17. Revision 0.2  1993/08/27  00:00:00  neeri
  18. Format
  19.  
  20. Revision 0.1  1993/08/17  00:00:00  neeri
  21. Protect against multiple inclusion
  22.  
  23. *********************************************************************/
  24.  
  25. #ifndef __MPRSRC__
  26. #define __MPRSRC__
  27.  
  28. #define  MPAppSig 'McPL'
  29. #define    MPRtSig    'MrPL'
  30.  
  31. /* Window templates */
  32.  
  33. #define    WindowTemplates   128
  34.  
  35. /* Dialogs & Alerts */
  36.  
  37. #define  ErrorAlert           256
  38. #define  SaveAlert           257
  39.  
  40. #define    AboutDialog            258
  41.  
  42. #define    ad_PatchLevel        1
  43. #define    ad_Credits            2
  44. #define    ad_Version            3
  45.  
  46. #define    RevertAlert            262
  47. #define    AbortAlert            266
  48. #define    NoPerlAlert            270
  49. #define    ElvisAlert            274
  50.  
  51. #define    FormatDialog        320
  52.  
  53. #define    fd_OK                    1
  54. #define    fd_Cancel            2
  55. #define    fd_FontList            3
  56. #define    fd_SizeList            4
  57. #define    fd_Separator        5
  58. #define    fd_Outline            6
  59. #define    fd_SizeEdit            7
  60. #define    fd_MakeDefault        8
  61.  
  62. #define    PrefDialog            384
  63.  
  64. #define    pd_LibIcon            1
  65. #define    pd_ScriptIcon        2
  66. #define    pd_InputIcon        3
  67. #define    pd_Boundary            4
  68. #define    pd_Done                6
  69. #define    pd_Outline            7
  70.  
  71. #define    pd_LibStr            1
  72. #define    pd_ScriptStr        2
  73. #define    pd_InputStr            3
  74. #define    pd_ChangePath        4
  75. #define    pd_AddPath            5
  76.  
  77. #define    PrefLibID            385
  78.  
  79. #define    pld_List             pd_Outline+1
  80. #define    pld_Remove            pd_Outline+2
  81. #define    pld_Add                pd_Outline+3
  82.  
  83. #define    PrefLibDelID        3850
  84.  
  85. #define    PrefScriptID        386
  86.  
  87. #define    psd_Edit                pd_Outline+1
  88. #define    psd_Run                pd_Outline+2
  89. #define    psd_Check            pd_Outline+3
  90.  
  91. #define    PrefInputID            387
  92.  
  93. #define    pid_Inline            pd_Outline+1
  94.  
  95. #define    SaveScriptDialog    192
  96. #define     ssd_Type                13
  97. #define    ssd_Predef            2
  98. /* 
  99.     Small Icons
  100. */
  101.  
  102. #define     ConsoleSICNID    256
  103. #define     DocumentSICNID    257
  104. #define     EnabledSICNID    264
  105. #define     ReadOnlySICNID    265
  106. #define     BlockedSICNID    266
  107.  
  108. /* 
  109.     Credits font and strings
  110. */
  111.  
  112. #define CreditID    32268
  113.  
  114. /* 
  115.     Sounds
  116. */
  117.  
  118. #define AlertSoundID    128
  119.  
  120. /*
  121.     Menu Resources
  122. */
  123.  
  124. #define  appleID    128
  125. #define  fileID    129
  126. #define  editID    130
  127. #define    windowID    131
  128. #define     perlID    132
  129. #define  helpID    133
  130.  
  131. #define  kLastID    helpID
  132.  
  133. #define    kHierHelpMenu    200
  134.  
  135. #endif